projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f3e1f75
)
(Fmake_marker): Initialize marker's bytepos and charpos.
author
Richard M. Stallman
<rms@gnu.org>
Fri, 2 Jan 1998 21:27:13 +0000
(21:27 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Fri, 2 Jan 1998 21:27:13 +0000
(21:27 +0000)
src/alloc.c
patch
|
blob
|
history
diff --git
a/src/alloc.c
b/src/alloc.c
index db5ff4b0b5067e2f42da9f8c6f6d19d7012abf9e..528cd2e118e745b7f141339ab3cced25efa63841 100644
(file)
--- a/
src/alloc.c
+++ b/
src/alloc.c
@@
-1045,7
+1045,8
@@
DEFUN ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0,
XMISCTYPE (val) = Lisp_Misc_Marker;
p = XMARKER (val);
p->buffer = 0;
- p->bufpos = 0;
+ p->bytepos = 0;
+ p->charpos = 0;
p->chain = Qnil;
p->insertion_type = 0;
return val;